2017-10-13 shell 练习-查找字母数小于6的单词 shell练习 bash for循环打印下面这句话中字母数不大于6的单词。 Bash also interprets a number of multi-character options. 123456789#!/bin/bashfor s in Bash also interprets a number of multi-character optionsdo n=`echo $s|wc-c` if [ ! $n -gt 6 ] then echo $s fidone < shell 练习-输入数字执行对应命令 shell 练习-删除文本中的字母 >